9bf2585ff02cba80ad5d516749e0da1d103faeef,signup/tool/src/java/org/sakaiproject/signup/tool/downloadEvents/EventWorksheet.java,EventWorksheet,createWorksheet,#SignupMeetingWrapper#number#boolean#,455
Before Change
} else {
int availableSpots = tsItem.getAttendees() != null ? tsItem
.getMaxNoOfAttendees()
- tsItem.getAttendees().size() : tsItem.getMaxNoOfAttendees();
availableSpots = availableSpots < 1 ? 0 : availableSpots;
String value = String.valueOf(availableSpots);
if (tsItem.isLocked())
After Change
} else {
int availableSpots = getValidAttendees(tsItem.getAttendees()) != null ? tsItem
.getMaxNoOfAttendees()
- getValidAttendees(tsItem.getAttendees()).size() : tsItem.getMaxNoOfAttendees();
availableSpots = availableSpots < 1 ? 0 : availableSpots;
String value = String.valueOf(availableSpots);
if (tsItem.isLocked())